01. Supervised Learning Assessment

Why is the term "Naive" used in the Naive Bayes Classifier?

SOLUTION: We are assuming the features are independent events, when they may not be so.

What is an advantage of L1 regularization over L2 regularization?

SOLUTION: It tends to turn a lot of weights into zero, while leaving only the most important ones, thus helping in feature selection.

Which one of the following could reduce overfitting in a random forest classifier?

SOLUTION: Increase the number of trees

Which models can be used for non-binary classification?(select all that apply)

SOLUTION:
  • Decision Trees
  • Random Forests
  • Boosted Trees